[USER (data scientist)]: Great, now let's do some one-hot encoding for the court surfaces. Please generate a DataFrame with one-hot encoded values for the 'Surface' column in a subset of the ATP tennis dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle

atp_tennis = pd.read_csv('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(surface_data_clean)

# save data
pickle.dump(surface_data_clean,open("./pred_result/surface_data_clean.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure thing! Here's the code to do one-hot encoding for the court surfaces: 
'''
import pandas as pd
import pickle

atp_tennis = pd.read_csv('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
